Python 字典的常用知识

文章目录
  1. 1. 字典处理
    1. 1.0.1. 合并两个字典
  • 2. 注脚
  • 字典处理

    合并两个字典

    如果使用 Python 3.5+,那么如下方式是最快、最简洁、最 Pythonic 的[1][2]

    1
    combine-dict = {**dictA, **dictB}

    这段代码在功能上与如下方案是等价的:
    新建了一个空字典,然后依次往里面填充了来自dictAdictB的元素

    1
    2
    3
    combine-dict = {}
    combine-dict.update(dictA)
    combine-dict.update(dictB)

    注脚


    1. The Idiomatic Way to Merge Dictionaries in Python - Trey Hunner ↩︎

    2. 怎样合并字典最符合Python语言习惯?| 编程派 | Coding Python ↩︎